home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / bench / x.txt / 000294_sbrossette@medmined.com_Fri Jan 11 16:59:32 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  82 lines

  1. Article: 13127 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!howland.erols.net!newsfeed.direct.ca!look.ca!logbridge.uoregon.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: sbrossette@medmined.com (SB)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: device in use ... locked by process ... must set line
  6. Date: 11 Jan 2002 07:54:19 -0800
  7. Organization: http://groups.google.com/
  8. Lines: 64
  9. Message-ID: <a88bce6c.0201110754.179d3598@posting.google.com>
  10. NNTP-Posting-Host: 207.157.43.63
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1010764460 19494 127.0.0.1 (11 Jan 2002 15:54:20 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: 11 Jan 2002 15:54:20 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13127
  17.  
  18. Platform: C-kermit 7.0, linux Mandrake (kernel 2.4.3-20), Lucent Venus
  19. modem
  20.  
  21. A remote machine dials in and transfers files daily and weekly via
  22. scripts launched by cron.  Periodically, and unpredictably (once per
  23. week to once per month), file transfer does not occur and the message
  24.  
  25. device in use ... locked by process XXXX ... must set line
  26.  
  27. is found.
  28.  
  29. At this point I get someone to kill the process (or reboot), then
  30. everything works properly until the next time the same problem occurs.
  31.  
  32. I've been unable to do much of any debugging since the machine is many
  33. hundreds of miles away and I have no remote access to it.  What can I
  34. do to fix this problem?  Below is one of the dialout scripts.  Others
  35. like it are similar.
  36.  
  37. Thanks,
  38. Steve
  39.  
  40. echo Setting params for Lucent Venus modem ...
  41. pause 2
  42. set modem type user-defined ppi
  43. set modem hangup-method rs232-signal
  44. set modem command autoanswer on ats0=1\13
  45. set modem command autoanswer off ats0=0\13
  46. set modem command compression on at%c1\13
  47. set modem command compression off at%c0\13
  48. set modem command error-correction on at&q5\13
  49. set modem command error-correction off at&q0\13
  50. set modem command software-flow at&k4s32=17s33=19\13
  51. #set modem command init-string at&fw2s109=2s38=1s37=14\13
  52. set modem command init-string at&fw\13
  53. set modem command ignore-dialtone atx3\13
  54. set modem command speaker on atm1\13
  55. set modem command speaker off atm0\13
  56. set modem command volume low atl1\13
  57. set modem command volume medium atl2\13
  58. set modem command volume high atl3\13
  59.  
  60. pause 2
  61. set line /dev/modem
  62. pause 2
  63.  
  64. set speed 38400
  65.  
  66. set dial retries 3
  67. set dial interval 20
  68.  
  69. dial 9,X,XXX-XXXX
  70. if failure exit
  71.  
  72. remote login XXXXX XXXX
  73.  
  74. remote cd /home/acct1/dropbox/ 
  75.  
  76. send /home/local/*.gpg
  77. if failure send /home/local/*.gpg
  78.  
  79. hangup
  80.  
  81. exit
  82.